From 1e66efe5169dfad9a0c62ba42fbf31ce977bf49e Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Tue, 19 Dec 2023 09:36:40 -0500 Subject: Use modal dialogs for expense creation & edition (#10) * First attemps at using route interception and modals * Remove route interception * Make it work * Use Vaul on small screens * Improve vaul --- src/app/groups/[groupId]/not-found.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/app/groups/[groupId]/not-found.tsx (limited to 'src/app/groups/[groupId]/not-found.tsx') diff --git a/src/app/groups/[groupId]/not-found.tsx b/src/app/groups/[groupId]/not-found.tsx new file mode 100644 index 0000000..af3788b --- /dev/null +++ b/src/app/groups/[groupId]/not-found.tsx @@ -0,0 +1,5 @@ +'use client' + +export default function NotFound() { + return null +} -- cgit v1.3